+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
+Thu Mar 28 18:38:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate):
+ Don't show the window unless the widget is mapped.
+ (#76742, Dennis Björklund, Soeren Sandmann)
+
2002-03-29 Hans Breuer <hans@breuer.org>
Fixed dashed line issues (#74441) to an IMO reasonable extend.
if (GTK_WIDGET_REALIZED (widget))
{
- gdk_window_show (paned->handle);
+ if (GTK_WIDGET_MAPPED (widget))
+ gdk_window_show (paned->handle);
gdk_window_move_resize (paned->handle,
paned->handle_pos.x,
paned->handle_pos.y,
paned->handle_pos.width = MAX (1, (gint) widget->allocation.width - 2 * border_width);
paned->handle_pos.height = handle_size;
- if (GTK_WIDGET_REALIZED(widget))
+ if (GTK_WIDGET_REALIZED (widget))
{
- gdk_window_show (paned->handle);
+ if (GTK_WIDGET_MAPPED (widget))
+ gdk_window_show (paned->handle);
gdk_window_move_resize (paned->handle,
paned->handle_pos.x,
paned->handle_pos.y,